home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
programming
/
easyrcs_1.3
/
arexx
/
removeglobalsymbol.ercs
< prev
next >
Wrap
Text File
|
1996-09-03
|
462b
|
30 lines
/* RemoveGlobalSymbol.ercs
* Yann Muller © 1996
* Version 1.0 --- 03/09/96
*/
OPTIONS RESULTS
OPTIONS FAILAT 11
ADDRESS EASYRCS
'askstring "Remove symbol everywhere" Symbol'
if (RC == 0) then
do
symb = RESULT
'query showstate'
show_old = RESULT
'show both'
'select top'
DO while RC == 0
/* symbol for each file */
'symbol REMOVE NAME' symb
'select next'
END
'show' show_old
end